provider Events GET
/api/0/organizations/{organization_id_or_slug}/issues/{issue_id}/hashes/ @utdk/sentry
/api/0/organizations/{organization_id_or_slug}/issues/{issue_id}/hashes/ List an Issue's Hashes
This endpoint lists an issue's hashes, which are the generated checksums used to aggregate individual events.
- organization_id_or_slug path required
- The ID or slug of the organization the event belongs to.
- string
- issue_id path required
- The ID of the issue to retrieve.
- string
- full query
- If this is set to true, the event payload will include the full event body, including the stacktrace. Set to 1 to enable.
- boolean
- cursor query
- A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.
- string
Try it
Authentication
Configure credentials for API Reference
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.
Saved automatically to browser storage.
Code snippet
Updates live as you fill in the form above.
TypeScript
import sentry from '@utdk/sentry';
await sentry.listAnIssueSHashes({
"full": true
})